From d59081310bfc4489efbc399bc9418ea2a64cfdac Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 31 May 2011 12:18:55 +0200 Subject: [PATCH] styleproperties: Rename enum value I want to use that same enum value elsewhere. --- gtk/gtkstyleproperties.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk/gtkstyleproperties.c b/gtk/gtkstyleproperties.c index 9a9e739502..dfe7915427 100644 --- a/gtk/gtkstyleproperties.c +++ b/gtk/gtkstyleproperties.c @@ -363,7 +363,7 @@ gtk_style_properties_lookup_property (const gchar *property_name, /* GParamSpec functionality */ enum { - GTK_STYLE_PROPERTY_INHERIT = 1 << G_PARAM_USER_SHIFT + GTK_STYLE_PARAM_INHERIT = 1 << G_PARAM_USER_SHIFT }; /** @@ -387,9 +387,9 @@ gtk_style_param_set_inherit (GParamSpec *pspec, gboolean inherit) { if (inherit) - pspec->flags |= GTK_STYLE_PROPERTY_INHERIT; + pspec->flags |= GTK_STYLE_PARAM_INHERIT; else - pspec->flags &= ~GTK_STYLE_PROPERTY_INHERIT; + pspec->flags &= ~GTK_STYLE_PARAM_INHERIT; } /** @@ -405,7 +405,7 @@ gtk_style_param_set_inherit (GParamSpec *pspec, gboolean gtk_style_param_get_inherit (GParamSpec *pspec) { - return (pspec->flags & GTK_STYLE_PROPERTY_INHERIT) ? TRUE : FALSE; + return (pspec->flags & GTK_STYLE_PARAM_INHERIT) ? TRUE : FALSE; } /* GtkStyleProperties methods */ -- 2.30.2